NDoc, creating comment for the namespace.

Set "UseNameSpaceSummeries" to True in your NDoc project, and add a "NamespaceDoc.cs" to your project containing:

namespace MyNamespace
{
// this class is used to generate comment for the MyNamespace  namespace.
// NDOC is used as documentation generator.
// see NDOC , UseNamespaceDocSummaries for an explanation.

/// <summary>
///
This comment will appear in the namaspace part of your helpfile
/// </summary>
public class NamespaceDoc
{
// must be empty, solely exists for documentation purposes.
}

}